home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 1 / Amiga Tools.iso / egs-tools / egs_demo-version / egs_devels / c-include / egb / gbselect.h < prev    next >
C/C++ Source or Header  |  1994-06-06  |  1KB  |  49 lines

  1. #ifndef EGS_EGB_GBSELECT_H
  2. #define EGS_EGB_GBSELECT_H
  3.  
  4. /***************************************************************************\
  5. *
  6. *  $
  7. *  $ FILE     : gbselect.h
  8. *  $ VERSION  : 1
  9. *  $ REVISION : 2
  10. *  $ DATE     : 07-Feb-93 20:04
  11. *  $
  12. *  $ Author   : mvk
  13. *  $
  14. *
  15. *****************************************************************************
  16. *                                                                           *
  17. * (c) Copyright 1990/93 VIONA Development                                   *
  18. *     All Rights Reserved                                                   *
  19. *                                                                           *
  20. \***************************************************************************/
  21.  
  22. #ifndef         EXEC_TYPES_H
  23. #include        <exec/types.h>
  24. #endif
  25. #ifndef         EGS_EGSINTUI_H
  26. #include        <egs/egsintui.h>
  27. #endif
  28. #ifndef         EGS_EGSGADBOX_H
  29. #include        <egs/egsgadbox.h>
  30. #endif
  31.  
  32. typedef EB_GadBoxPtr    *EGB_GadBoxArray[];
  33. typedef EGB_GadBoxArray *EGB_GadBoxArrayPtr;
  34.  
  35. typedef struct EGB_SelectGadget *EGB_SelectGadgetPtr;
  36.  
  37. /* DICE typedef workaround */
  38.  
  39. struct EGB_SelectGadgetStruct {
  40.       struct EI_Gadget       Gadget;
  41.       WORD                   Sel, Selnum;
  42.       APTR                   SelGfx;
  43. };
  44.  
  45. typedef struct EGB_SelectGadgetStruct EGB_SelectGadget;
  46.  
  47. #endif /*EGS_EGB_GBSELECT_H */
  48.  
  49.